home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Clickx 115
/
Clickx 115.iso
/
software
/
tools
/
windows
/
tails-i386-0.16.iso
/
live
/
filesystem.squashfs
/
var
/
lib
/
dpkg
/
info
/
unrar-free.postinst
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2007-12-15
|
421 b
|
25 lines
#!/bin/sh
set -e
case "$1" in
configure|abort-upgrade)
update-alternatives --install /usr/bin/unrar unrar \
/usr/bin/unrar-free 30 \
--slave /usr/share/man/man1/unrar.1.gz unrar.1.gz \
/usr/share/man/man1/unrar-free.1.gz
;;
abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \$1'" >&2
exit 0
;;
esac
exit 0